Changes between Version 26 and Version 27 of Using Pidgin
- Timestamp:
- Jun 3, 2007, 8:29:54 PM (17 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Using Pidgin
v26 v27 90 90 91 91 === How do I make Escape close conversation windows? === 92 Locate `.purple` directory, and open the `accels` file within it. Uncomment or add the following line: 93 `(gtk_accel_path "<main>/Conversation/Close" "Escape")` 92 Locate your `.purple` directory, and open the `accels` file within it. Uncomment or add the following line: 93 {{{ 94 (gtk_accel_path "<main>/Conversation/Close" "Escape") 95 }}} 94 96 This must be done while Pidgin is not running. 97 98 === How do I change the language for the Highlight Misspelled words option? === 99 Pidgin currently only supports spell checking in your locale language. This is because gtkspell 2 does not offer a good way for us to know which dictionaries are available or to switch between them. This functionality has long been promised for gtkspell version 3, which has been delayed somewhat indefinitely. See [http://gtkspell.sf.net gtkspell.sf.net]. 100 101 There is, however a simple plugin called [http://plugins.guifications.org/trac/wiki/switchspell switchspell] that can change the spell check language on a per-buddy basis. 95 102 96 103 === How do I register for a new account? === … … 135 142 No, you can't. We get requests for this often, but Pidgin is indeed a messaging client. Aside from the capabilities each protocol may support, the Pidgin developers have no intention to turn Pidgin into a multi-feature Internet client capable of doing everything under the sun. We also won't be helping to develop plugins to turn it into that. There are many Internet applications available for Linux, Windows, or whatever operating system you use that would undoubtedly do a better job. 136 143 137 Note that LiveJournal provides an XMPP messaging service which makes it possible to make entries to your blog via IM, no matter what XMPP-supporting IM client you use. 144 Note that [http://www.livejournal.com LiveJournal] provides an XMPP messaging service which makes it possible to make entries to your blog via IM, no matter what XMPP-supporting IM client you use. 145 146 === Can I "skin" Pidgin? === 147 The UI can be customized using GTK themes. Application-specific skins will never be supported in Pidgin. This seems to confuse a lot of users, so here's an attempt at an explanation. 148 149 Themes allow you to change font size, font face, the color of different elements of the UI, and sometimes their shape. All of this is perfectly reasonable, and encompasses the range of configuration that ''most'' users are requesting. Skins go beyond this. Skins allow you to move and possibly supress different elements of the UI that the programmers have added for specific reasons. 150 151 In so doing, skins create a support nightmare. The developer, talking to the user, cannot be sure that the user sees the same interface. Is it a bug that the user cannot see how to change font size, or is the user's skin suppressing that widget? This is an unacceptable situation. 152 153 Conversely, while themes allow some sillyness, for instance setting the background to the same color as the font, the results are relatively easily foreseen and avoided by theme authors. Further, by using the existing GTK theme mechanism, we gain two advantages: 154 1. We don't have to write it ourselves. Were we to write our own mechanism, we would be adding overhead in both the run time and the time necessary to debug. 155 1. We have a built in way of debugging theme problems, by checking if the same bug exists with other GTK programs. 156 157 Lastly, since GTK themes only allow acceptable modifications, we do not have to worry that a user isn't seeing part of the UI because it is either showing or not showing ''because of our code''. 158 159 === Can I turn the tray icon off? === 160 Sorry, no. The tray icon will load if you have a Notification Area or if you are using Windows. 161 162 === Can I import or export my buddy list? === 163 Not with Pidgin alone, but the [http://plugins.guifications.org/trac/wiki/PluginPack Purple Plugin Pack] provides the [http://plugins.guifications.org/trac/wiki/listhandler List Handler] plugin, which adds some importing and exporting capabilities. 164 165 === Can I group buddies by their owner, like Trillian's Metacontacts? === 166 Sure! Right click a buddy on your list and at the bottom of the menu click "Expand". Then just drag other screen names to the same person below it. When you're done, click on the arrow to collapse them. When the contact is collapsed, Pidgin will select a buddy to display based on the status of the buddies in the contact, and their order. 167 168 === What do those colors in the conversation tab mean? === 169 * '''Red''' - A message is waiting for you 170 * '''Blue''' - Someone sent a message containing your name 171 * '''Green''' - The buddy is typing 172 * '''Yellow''' - The buddy began typing, and then stopped 173 * '''Gray''' - There has been a join or a part in that chat, or the buddy has signed off 138 174 139 175 == Windows Specific == … … 215 251 You are done! Running `U:\Programs\Pidgin\pidgin-portable.exe` will cause pidgin to run off the USB Drive, saving the settings, logs and etc. to `U:\Programs\.purple`. 216 252 253 === Can I make Pidgin transparent/translucent? === 254 You can make Pidgin translucent in most versions of Windows using the "Transparency" plugin that ships with Pidgin for Windows. 255 217 256 == Linux and Unix-like platforms == 218 257 … … 230 269 231 270 GTK+ sets these `WM_CLASS` values for us so that they are unique for Pidgin instances, and the documentation for the `gtk_window_set_wmclass` function says explicitly not to use it for anything else. Pidgin uses the `WM_WINDOW_ROLE` hint to differentiate windows. If your window manager is having problems differentiating between Pidgin windows, please ensure it uses the `WM_WINDOW_ROLE` hint per the ICCCM. 271 272 === Can I make Pidgin transparent/translucent? === 273 It is not possible to make Pidgin translucent in Linux and other platforms that use X11. 274 275 The X.org X11R6 server provides a COMPOSITE extension that allows applications to have true translucency, but it is X.org-specific and it requires support at the GTK+ level (if it is to be per-widget). We do not wish to support this form of translucency until it is supported by GTK+. We also do not wish to implement the psuedo-translucency offered by other programs (by copying a section of your background image, tinting it, and plastering it onto a Pidgin window).